102 This command will activate a window by title. The active window has the highlighted title bar.
103 This command will execute a program by name.
104 Displays text in a message box with an "OK" button. This is used for notifications.
105 Displays text in a message box with an "OK" and a "Cancel" button. The result can be checked and used in an If statement to change macro flow.
106 This command will pause the execution of the macro for the number of milliseconds you specify. \n1 second = 1,000 milliseconds\n1 minute = 60,000 milliseconds\n
107 Stops the macro execution.
108 Displays a dialog box that will prompt for input. The input can be sent as keystrokes via the SendInput functions. Enter the text to display as the prompt. For example:\nInputBox("Enter your first name")\nSendInput()\n
109 Closes all programs and displays a login dialog box.
110 Writes text to the specified file with a date and time stamp.
111 Reboots the system.
112 Shuts the system down.
113 Executes the specified macro file.
114 Jumps the macro's execution to the line after the label name.
115 This command will send keystrokes to the active window or application.
116 This command will send keystrokes to the specified window.
117 Writes text to the default error log file. The name and location of the error log is defined in the System Options dialog.
118 Closes the window with the specified title.
119 A comment is a macro line that will not execute. Use comments to make notations in your macro, or for debugging.
120 Sends keys that were input from the last InputBox() command to the active window.
121 Sends keys that were input from the last InputBox() to a window based on its title. For example:\nInputBox("Enter your name") \nSendInputToWindow("Untitled - Notepad")\n
122 Executes a command for a specified number of times. For example:\nRepeat(SendKeys("This is a test~"),10)\n
123 Sounds the system beep.
124 Plays a wave file. For example:\nPlaySound("c:\winnt\media\The Microsoft Sound.wav")\n
125 Executes a system power off (if your hardware supports it).
126 Appends a line to a file (with a carriage return). This function will create the file if it does not exist. For example:\nWriteLineToFile("test.txt","Line 1") \nWriteLineToFile("test.txt","Line 2")\n
127 Appends text to a file (without a carriage return). This function will create the file if it does not exist. For example:\nWriteToFile("test.txt","This text is ")\nWriteToFile("test.txt","on the same line")
129 Minimizes the window by the title. The window title is optional. If the window title is not specified, the current active window is minimized. For example:\nMinimizeWindow("Untitled - Notepad")\n
130 Normalizes the window by the title. The window title is optional. If the window title is not specified, the current active window is normalized.\n
131 Returns TRUE if the file exists. For example:\nFileExist("c:\test.log")\n
132 Returns TRUE if the current active window title matches the passed window title.\n
133 Returns TRUE if there is a window that has a title that matches the passed window title.\n
134 These functions are used after a MessageBox(), MessageBoxOkCancel(), or InputBox() to detect which key the user pressed to exit the dialog. For example:\nMessageBoxOkCancel("Hit Ok to beep")\nIf(ResponseOk(),Beep())\n
135 These functions are used after a MessageBox(), MessageBoxOkCancel(), or InputBox() to detect which key the user pressed to exit the dialog. For example:\nMessageBoxOkCancel("Hit cancel to exit")\nIf(ResponseCancel(),ExitMacro())\n
136 This defines the label that the program will go to when an error occurs.
137 This command sends the Quit command to the specified program, based on its window title.
138 This command will execute a program.
139 This command will set the working directory for the running macro.
140 This line is a label. It is used with the GoTo command.
141 This is a blank line. It has no effect, but makes your macro more readable.
142 Sets the window caption for all message box and input box commands.
143 Sends a string containing environment variables to the active window.
144 Sends the current date and time based on a format string. For example:\nSendNow("The current date and time is: %x %X")
145 Checks a condition and performs an action if the test result is TRUE, and optionally, a different action if the test is FALSE.
146 Sends a single DDE command to an Application and Topic.
147 Sends a series of DDE commands stored in a script to an Application and Topic.
148 This command will execute a specified command while the TRUE condition is met.
149 This defines the start of a For-Next loop
150 Checks if a system resource is less than (<) a specified limit. If TRUE, the specified command is executed.
151 Checks if a system resource is more than (>) a specified limit. If TRUE, the specified command is executed.
152 This command logs a system resource or system information to a file.
153 Waits for a program to complete. It is used after the RunProgram command to pause macro execution until the program started is complete. You can specify the number of milliseconds to wait or -1 to wait indefinitely.
154 This runs a DOS command such as COPY, DIR, etc..
155 This function returns TRUE if the file is older than the specified number of seconds.
156 This command sends keystrokes from a file to the active window or application.
157 This logs an event to the system event file. The name and location of the event log is defined in the System Options dialog.
162 %lu KB
163 %lu KB Free on %c:
164 Unavailable
228 Maximizes the window by the title. The window title is optional. If the window title is not specified, the current active window is maximized. For example:\nMaximizeWindow("Untitled - Notepad")
30995 Visit the Cypress Technologies internet web site
32771 Add a new line\nAdd Line (Ctrl+A)
32772 Edit the current line\nEdit Line (Ctrl+E)
32773 Delete the current line\nDelete Line (Ctrl+D)
32774 Move the selected line up\nMove Up (Alt+U)
32775 Move the selected line down\nMove Down (Alt+D)
32776 Change the line to a comment or uncomment it\nComment
32777 Add blank line before current\nBlank Line
32778 Change the display font
32779 Run the macro (Ctrl+R)
32780 Test the current line (Ctrl+T)
32782 Edit the current line manually
32783 Manually edit the current line\nManual Edit (Ctrl+Enter)
32785 Test an If condition and execute an option\nIf
32786 Sound the default system beep\nBeep
32787 Play a full sound file\nPlaysound
32788 Send keys to the active window\nSend Keys Active
32789 Send a single DDE command to an application and topic\nDDE Command
32790 Send a DDE script file to an application and topic\nDDE Script
32791 Minimize a window\nMinimize
32792 Maximize a window\nMaximize
32793 Normalize ( Restore ) a window\nNormalize
32794 Close a window\nClose
32795 Bring a window to the foreground\nActivate Window
32796 Temporarily pause execution for a specified number of milliseconds\nDelay
32797 Create a notification message box with an Ok button\nMessage Box
32798 Create a question message box with Ok and Cancel buttons\nOk/Cancel Message Box
32799 This command will execute a program\nRun Program
32800 Show/Hide Extended Controls Bar\nControls
32801 Exit the current macro\nExit Macro
32803 Test if a file exists\nFile Exist
32804 Create an input message box to ask for and store a string\nInput Box
32805 Jump to a label\nGoto
32806 Logout\nLogout
32807 Set the working directory for the running macro\nSet Directory
32808 Set the window title for all message box and input box commands\nSet Caption
32809 Repeat a command for a specified number of times\nRepeat
32810 Send a stop command to a currently running program\nQuit Program
32811 Execute another macro file\nRun Macro
32812 Execute a system power off (if supported by the hardware)\nPower Off
32815 Enter a For Command\nFor Loop
32816 Perform a command while a condition is True\nWhile
32818 Append text to a text file (no carriage return)\nWrite Text to File
32819 Log an error to the default error log file\nLog Error
32820 Define the label to jump to if an error occurs\nOn Error
32823 Exit the currently executing macro\nExit Macro
32824 Return TRUE if the specified file exists\nFile Exist
32825 Reboot the system\nReboot
32826 Shut the system down\nShutdown System
32827 Enter a label for use with a GoTo command\nLabel
32828 Send environment string to active window\nSend Environment
32831 Return TRUE if the specified window is the active window\nWindow Active
32832 Return TRUE if a window exists that matches the specified title \nFind Window
32833 Execute a command if the specified system resource is less than the specified limit\nIf Less Than
32834 Execute a command if the specified system resource is more than the specified limit\nIf More Than
32835 Log system information to a text file\nLog System Info
32836 Log message to a log file\nLog To File
32837 Send the string from the last input box to the active window\nSend Input To Active
32838 Send the string from the last input box to the specified window\nSend Input Specific
32839 Send keys to a specified window\nSend Keys Specific
32840 Send current time to the active window as keystrokes based on a format string\nSend Now
32844 Display the Standard Editing toolbar\nEdit Toolbar
32845 Display the Common Commands toolbar\nCommon Toolbar
32846 Display the DDE/SendKeys toolbar
32847 Display the System Functions toolbar\nSystem Toolbar
32848 Display the Conditions toolbar ( If, While, GoTo, etc. )
32849 Display the Window Controls toolbar
32850 Quick start help
32851 Display help on help
32852 Visit the Cypress Technologies web site
32853 Edit the system options
32855 Launch editor with current macro file
32856 Display a summary of all commands by category
57344 GroundControl
57345 For Help, press F1
57346 Select an object on which to get Help
57600 Create a new document\nNew
57601 Open an existing document\nOpen
57602 Close the active document\nClose
57603 Save the active document\nSave
57604 Save the active document with a new name\nSave As
57605 Change the printing options\nPage Setup
57606 Change the printer and printing options\nPrint Setup
57607 Print the active document\nPrint
57609 Display full pages\nPrint Preview
57616 Open this document
57617 Open this document
57618 Open this document
57619 Open this document
57620 Open this document
57621 Open this document
57622 Open this document
57623 Open this document
57624 Open this document
57625 Open this document
57626 Open this document
57627 Open this document
57628 Open this document
57629 Open this document
57630 Open this document
57631 Open this document
57632 Erase the selection\nErase
57633 Erase everything\nErase All
57634 Copy the selection and put it on the Clipboard\nCopy
57635 Cut the selection and put it on the Clipboard\nCut
57636 Find the specified text\nFind
57637 Insert Clipboard contents\nPaste
57640 Repeat the last action\nRepeat
57641 Replace specific text with different text\nReplace
57642 Select the entire document\nSelect All
57643 Undo the last action\nUndo
57644 Redo the previously undone action\nRedo
57653 Split the active window into panes\nSplit
57664 Display program information, version number and copyright\nAbout
57665 Quit the application; prompts to save documents\nExit
57666 Opens Help\nHelp Topics
57667 List Help topics\nHelp Topics
57668 Display instructions about how to use help\nHelp
57669 Display help for clicked on buttons, menus and windows\nHelp
57670 Display help for current task or command\nHelp
57680 Switch to the next window pane\nNext Pane
57681 Switch back to the previous window pane\nPrevious Pane
59136 EXT
59137 CAP
59138 NUM
59139 SCRL
59140 OVR
59141 REC
59392 Show or hide the toolbar\nToggle ToolBar
59393 Show or hide the status bar\nToggle StatusBar
61184 Change the window size
61185 Change the window position
61186 Reduce the window to an icon
61187 Enlarge the window to full size
61188 Switch to the next document window
61189 Switch to the previous document window
61190 Close the active window and prompts to save the documents